home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-passwordconflict.js < prev    next >
Text File  |  2010-01-28  |  1KB  |  46 lines

  1. /* 
  2.  Copyright 2008 Foxmarks Inc.
  3.  
  4.  foxmarks-passwordconflict.js: handles the UI for the password conflict dialog. 
  5.   
  6.  */
  7.  
  8. function onServerOK()
  9. {
  10.     var dlg = document.getElementById("foxmarks-passwordconflict");
  11.     window.arguments[1].button = 2;
  12.     dlg.acceptDialog();
  13.     return true;
  14. }
  15.  
  16. function onLocalOK()
  17. {
  18.     var dlg = document.getElementById("foxmarks-passwordconflict");
  19.     window.arguments[1].button = 1;
  20.     dlg.acceptDialog();
  21.     return true;
  22. }
  23. function onLoad()
  24. {
  25.     var data = window.arguments[0];
  26.     var local = data.local;
  27.     var server =data.server;
  28.  
  29.     document.getElementById("local.site").value = local.site;
  30.     document.getElementById("local.username").value = local.username;
  31.     document.getElementById("local.password").value = local.password;
  32.  
  33.     document.getElementById("server.site").value = server.site;
  34.     document.getElementById("server.username").value = server.username;
  35.     document.getElementById("server.password").value = server.password;
  36. }
  37.  
  38. function showPasswords(){
  39.     var item;
  40.     item = document.getElementById("local.password");
  41.     item.setAttribute("type", "");
  42.     item = document.getElementById("server.password");
  43.     item.setAttribute("type", "");
  44. }
  45.  
  46.